gtk4.git
4 years agogdk/wayland: Do not use xdg_wm_base.ping serials as "user input" serials
Carlos Garnacho [Thu, 4 Nov 2021 13:40:21 +0000 (14:40 +0100)]
gdk/wayland: Do not use xdg_wm_base.ping serials as "user input" serials

Ping/pong serials are not meant to be interpreted as user input serials
(e.g. those given back later to the compositor on grabs). As a matter
of fact, Mutter uses a different count (i.e. timestamps) in these, so
using these serials may confuse the compositor into denying certain
operations like DnD.

4 years agoMerge branch 'ebassi/cross-bundle' into 'master'
Matthias Clasen [Thu, 4 Nov 2021 18:11:40 +0000 (18:11 +0000)]
Merge branch 'ebassi/cross-bundle' into 'master'

build: Don't use ld when cross-compiling

See merge request GNOME/gtk!4121

4 years agobuild: Don't use ld when cross-compiling
Emmanuele Bassi [Thu, 4 Nov 2021 13:41:35 +0000 (13:41 +0000)]
build: Don't use ld when cross-compiling

We can't guarantee anything on the target toolchain, in that case.

4 years agoMerge branch 'taozuhong-master-patch-22982' into 'master'
Matthias Clasen [Thu, 4 Nov 2021 11:06:44 +0000 (11:06 +0000)]
Merge branch 'taozuhong-master-patch-22982' into 'master'

Make dialog content_area box as vertical, keep compatibility with GTK3

See merge request GNOME/gtk!4119

4 years agoUpdate gtk/ui/gtkdialog.ui
TAO ZUHONG [Thu, 4 Nov 2021 08:25:03 +0000 (08:25 +0000)]
Update gtk/ui/gtkdialog.ui

4 years agoMake dialog content_area box as vertical, keep compatibility with GTK3
TAO ZUHONG [Thu, 4 Nov 2021 08:23:04 +0000 (08:23 +0000)]
Make dialog content_area box as vertical, keep compatibility with GTK3

4 years agoMerge branch 'listview-sink-adjustment' into 'master'
Matthias Clasen [Thu, 4 Nov 2021 01:58:56 +0000 (01:58 +0000)]
Merge branch 'listview-sink-adjustment' into 'master'

listbase: Sink adjustments

Closes #4403

See merge request GNOME/gtk!4117

4 years agoMerge branch 'activate-signal-dropdown-combobox' into 'master'
Matthias Clasen [Thu, 4 Nov 2021 01:19:43 +0000 (01:19 +0000)]
Merge branch 'activate-signal-dropdown-combobox' into 'master'

Add activate signal to DropDown and ComboBox

See merge request GNOME/gtk!3935

4 years agoMerge branch 'reftest-no-blink' into 'master'
Matthias Clasen [Thu, 4 Nov 2021 01:15:31 +0000 (01:15 +0000)]
Merge branch 'reftest-no-blink' into 'master'

testsuite: Set GDK_DEBUG unconditionally

See merge request GNOME/gtk!4116

4 years agolistbase: Sink adjustments
Matthias Clasen [Thu, 4 Nov 2021 01:08:46 +0000 (21:08 -0400)]
listbase: Sink adjustments

gtk_adjustment_new returns floating objects.
Sink them.

Fixes: #4403
4 years agoreftest: No blinking, please
Matthias Clasen [Thu, 4 Nov 2021 00:43:01 +0000 (20:43 -0400)]
reftest: No blinking, please

Blinking cursors aren't helpful when we want to
compare renderings pixel-by-pixel. Turn them off.

4 years agoreftest: Stop setting GDK_RENDERING
Matthias Clasen [Thu, 4 Nov 2021 00:40:22 +0000 (20:40 -0400)]
reftest: Stop setting GDK_RENDERING

That environment variable isn't used anymore.

4 years agotestsuite: Set GDK_DEBUG unconditionally
Matthias Clasen [Thu, 4 Nov 2021 00:39:33 +0000 (20:39 -0400)]
testsuite: Set GDK_DEBUG unconditionally

The default-settings key works in non-debug builds
too, nowadays.

4 years agocombo_box: Use mnemonic_activate on override
Maximiliano Sandoval R [Sun, 3 Oct 2021 16:00:23 +0000 (18:00 +0200)]
combo_box: Use mnemonic_activate on override

This is changing the existing behavior where the mnemonic activation
would just grab the focus of the button, this was the behavior in GTK 3.

4 years agodropdown: Make DropDown activatable
Maximiliano Sandoval R [Fri, 10 Sep 2021 13:42:47 +0000 (15:42 +0200)]
dropdown: Make DropDown activatable

The activation is simply forwarded to the button
within.

4 years agocombobox: Make combo box activatable
Maximiliano Sandoval R [Fri, 10 Sep 2021 13:42:15 +0000 (15:42 +0200)]
combobox: Make combo box activatable

The activation is simply forwarded to the button
within.

4 years agoMerge branch 'wip/otte/for-master' into 'master'
Benjamin Otte [Wed, 3 Nov 2021 22:22:30 +0000 (22:22 +0000)]
Merge branch 'wip/otte/for-master' into 'master'

egl: Set the draw buffer to GL_BACK_LEFT

Closes #4402

See merge request GNOME/gtk!4114

4 years agomacos: Fix return value
Benjamin Otte [Wed, 3 Nov 2021 21:53:31 +0000 (22:53 +0100)]
macos: Fix return value

4 years agogdk: #if => #ifdef
Benjamin Otte [Wed, 3 Nov 2021 21:51:39 +0000 (22:51 +0100)]
gdk: #if => #ifdef

Makes compilers happy

4 years agogl: Use GL_BACK_LEFT
Benjamin Otte [Wed, 3 Nov 2021 18:49:08 +0000 (19:49 +0100)]
gl: Use GL_BACK_LEFT

The spec doesn't allow GL_BACK, but many drivers do. Use the
spec-accepted equivalent instead.

Fixed #4402

4 years agoegl: Set the draw buffer to GL_BACK_LEFT
Benjamin Otte [Wed, 3 Nov 2021 18:49:57 +0000 (19:49 +0100)]
egl: Set the draw buffer to GL_BACK_LEFT

Instead of using GL_BACK, use GL_BACK_LEFT, because the spec demands
this (many drivers don't).

Also move the call from the GDK backends into the GLContext code, as
this is a generic EGL issue (nvidia being the main driver in need of
this call, see 9c4c4eaaa121d784f591a591b95264647eaece96 for a longer
discussion).

Fixes #4402

4 years agoMerge branch 'small-check' into 'master'
Matthias Clasen [Mon, 1 Nov 2021 19:38:55 +0000 (19:38 +0000)]
Merge branch 'small-check' into 'master'

icon: revert object-symbolic check to be smaller

See merge request GNOME/gtk!4110

4 years agoicon: revert object-symbolic check to be smaller
Tobias Bernard [Mon, 1 Nov 2021 17:54:22 +0000 (18:54 +0100)]
icon: revert object-symbolic check to be smaller

The larger check works well in the headerbar, but not inline in various UI elements. This reverts the larger check since the latter is more common. For selection mode, a separate larger icon (selection-mode-symbolic) has been added to adwaita-icon-theme.

4 years agoMerge branch 'ci-require-macos' into 'master'
Matthias Clasen [Mon, 1 Nov 2021 15:22:53 +0000 (15:22 +0000)]
Merge branch 'ci-require-macos' into 'master'

Revert "ci: Allow macos to fail"

See merge request GNOME/gtk!4109

4 years agoRevert "ci: Allow macos to fail"
Matthias Clasen [Mon, 1 Nov 2021 14:33:09 +0000 (10:33 -0400)]
Revert "ci: Allow macos to fail"

This reverts commit b7cab5c5ebd50e8102938ea87cedc48670837f4b.

We welcome the macos runner back.

4 years agoMerge branch 'build-fix' into 'master'
Emmanuele Bassi [Mon, 1 Nov 2021 13:27:13 +0000 (13:27 +0000)]
Merge branch 'build-fix' into 'master'

build: Collect gi-docgen's common arguments

See merge request GNOME/gtk!4108

4 years agobuild: Collect gi-docgen's common arguments
Emmanuele Bassi [Mon, 1 Nov 2021 13:00:51 +0000 (13:00 +0000)]
build: Collect gi-docgen's common arguments

And only enable `--fatal-warnings` if `-Dwerror` has been set, just like
we do for the introspection data generation.

4 years agodocs: Add missing annotation
Emmanuele Bassi [Mon, 1 Nov 2021 12:54:35 +0000 (12:54 +0000)]
docs: Add missing annotation

4 years agodocs: Fix link to g_signal_emit()
Emmanuele Bassi [Mon, 1 Nov 2021 12:54:07 +0000 (12:54 +0000)]
docs: Fix link to g_signal_emit()

4 years agoMerge branch 'fix_typo' into 'master'
Timm Bäder [Mon, 1 Nov 2021 06:42:54 +0000 (06:42 +0000)]
Merge branch 'fix_typo' into 'master'

fix typo in GtkDragSource doc

See merge request GNOME/gtk!4107

4 years agofix typo in GtkDragSource doc
Alexandros Theodotou [Mon, 1 Nov 2021 03:48:52 +0000 (03:48 +0000)]
fix typo in GtkDragSource doc

GtkDrag => GdkDrag

4 years agoUpdate Latvian translation
Rūdolfs Mazurs [Sun, 31 Oct 2021 14:59:22 +0000 (14:59 +0000)]
Update Latvian translation

(cherry picked from commit d67982d5e0d894aca1a61f5f7d26b8164f6842ae)

4 years agoMerge branch 'bilelmoussaoui/gi-docgen' into 'master'
Timm Bäder [Sat, 30 Oct 2021 10:06:35 +0000 (10:06 +0000)]
Merge branch 'bilelmoussaoui/gi-docgen' into 'master'

gtk: fix broken gi-docgen annotation in IconView

See merge request GNOME/gtk!4106

4 years agogtk: fix broken gi-docgen annotation in IconView
Bilal Elmoussaoui [Sat, 30 Oct 2021 09:37:12 +0000 (09:37 +0000)]
gtk: fix broken gi-docgen annotation in IconView

4 years ago4.5.0
Matthias Clasen [Fri, 29 Oct 2021 20:02:47 +0000 (16:02 -0400)]
4.5.0

4 years agoMerge branch 'bilelmoussaoui/docs-typo' into 'master'
Matthias Clasen [Fri, 29 Oct 2021 19:53:34 +0000 (19:53 +0000)]
Merge branch 'bilelmoussaoui/docs-typo' into 'master'

gtk: remove unneeded backtick from gi-docgen item

See merge request GNOME/gtk!4105

4 years agogtk: remove unneeded backtick from gi-docgen item
Bilal Elmoussaoui [Fri, 29 Oct 2021 18:32:06 +0000 (18:32 +0000)]
gtk: remove unneeded backtick from gi-docgen item

4 years agoNEWS: Updates
Matthias Clasen [Fri, 29 Oct 2021 17:19:22 +0000 (13:19 -0400)]
NEWS: Updates

4 years agoUpdate Catalan translation
Jordi Mas i Hernandez [Fri, 29 Oct 2021 11:45:56 +0000 (11:45 +0000)]
Update Catalan translation

(cherry picked from commit ca02700a63b164a4670d0cde60bb0c279c7c4ec8)

4 years agoMerge branch 'ebassi/editor-config' into 'master'
Matthias Clasen [Thu, 28 Oct 2021 18:28:47 +0000 (18:28 +0000)]
Merge branch 'ebassi/editor-config' into 'master'

Add editorconfig file

See merge request GNOME/gtk!4102

4 years agoAdd editorconfig file
Emmanuele Bassi [Thu, 28 Oct 2021 17:17:02 +0000 (18:17 +0100)]
Add editorconfig file

Editors that support configuration through the editorconfig spec:

  https://editorconfig.org

should be able to have a subset of the GTK coding style and options
immediately available to them.

Plus, it's better than using relics from the Dark Ages, like modelines.

4 years agoMerge branch 'x11-xi2.4-gestures' into 'master'
Carlos Garnacho [Thu, 28 Oct 2021 16:44:52 +0000 (16:44 +0000)]
Merge branch 'x11-xi2.4-gestures' into 'master'

Touchpad gestures for X11 (XInput 2.4, X Server 21.1)

See merge request GNOME/gtk!3610

4 years agoMerge branch 'wip/otte/for-master' into 'master'
Benjamin Otte [Thu, 28 Oct 2021 13:16:25 +0000 (13:16 +0000)]
Merge branch 'wip/otte/for-master' into 'master'

cssparser: Remove unused argument

Closes #4381

See merge request GNOME/gtk!4101

4 years agobroadway: fix texture upload
Benjamin Otte [Thu, 28 Oct 2021 12:48:20 +0000 (14:48 +0200)]
broadway: fix texture upload

This was carelessly broken by me in 5b473911.

While fixing it anyway, at some support for better error handling.

Fixes #4381

4 years agocssparser: Remove unused argument
Benjamin Otte [Thu, 28 Oct 2021 01:13:28 +0000 (03:13 +0200)]
cssparser: Remove unused argument

The base_directory argument is never used. So don't have it.

4 years agoMerge branch 'gtkeventcontroller.c-fix' into 'master'
Matthias Clasen [Wed, 27 Oct 2021 23:50:13 +0000 (23:50 +0000)]
Merge branch 'gtkeventcontroller.c-fix' into 'master'

master: premature controller unreferencing in gtk_event_controller_handle_event

See merge request GNOME/gtk!4099

4 years agoMerge branch 'rgba-for-master' into 'master'
Matthias Clasen [Wed, 27 Oct 2021 23:27:42 +0000 (23:27 +0000)]
Merge branch 'rgba-for-master' into 'master'

docs: standard names are CSS names, not X11 names

See merge request GNOME/gtk!4100

4 years agogtk: Hold reference on controller until events are fully handled
Maxim Zakharov [Wed, 27 Oct 2021 00:37:36 +0000 (11:37 +1100)]
gtk: Hold reference on controller until events are fully handled

Fixes premature controller unreferencing in
gtk_event_controller_handle_event() if the controller itself is being
removed while handling the event.

4 years agodocs: standard names are CSS names, not X11 names
Benjamin Otte [Wed, 27 Oct 2021 22:12:58 +0000 (22:12 +0000)]
docs: standard names are CSS names, not X11 names

We updated Pango a while ago to use these more common names, but apparently forgot the docs.

4 years agoMerge branch 'wip/chergert/use-fabs-in-macos' into 'master'
Matthias Clasen [Wed, 27 Oct 2021 19:37:01 +0000 (19:37 +0000)]
Merge branch 'wip/chergert/use-fabs-in-macos' into 'master'

macos: fix scale on macOS 12 beta

See merge request GNOME/gtk!4065

4 years agoMerge branch 'wip/otte/for-master' into 'master'
Benjamin Otte [Tue, 26 Oct 2021 23:43:46 +0000 (23:43 +0000)]
Merge branch 'wip/otte/for-master' into 'master'

gdktypes: Remove GDK_EXTERN_VAR

Closes #4373

See merge request GNOME/gtk!4097

4 years agocss: Don't throw warnings on broken URL in image css
Benjamin Otte [Tue, 26 Oct 2021 15:02:56 +0000 (17:02 +0200)]
css: Don't throw warnings on broken URL in image css

If a URL can't be loaded, we might end up with a NULL file. Handle that
case properly by creating an invalid image instead and don't crash or
complain to stderr when files are NULL.

This was broken since 0886ade182f1a958024202d5c20248d57fcdb053

A new reftest has been included. We need a reftest instead of a
CSS parser test, because the error only becomes visible when
compute()ing the actual image.

Fixes #4373

4 years agogdk: Split enums from types
Benjamin Otte [Mon, 25 Oct 2021 00:14:18 +0000 (02:14 +0200)]
gdk: Split enums from types

Add gdkenums.h for enums and keep gdktypes.h for types.

Makes both files easier to read.

4 years agogdktypes: Remove GDK_EXTERN_VAR
Benjamin Otte [Sun, 24 Oct 2021 23:58:35 +0000 (01:58 +0200)]
gdktypes: Remove GDK_EXTERN_VAR

It is unused.

4 years agoMerge branch 'bilelmoussaoui/missing-since-annotations' into 'master'
Matthias Clasen [Tue, 26 Oct 2021 17:53:06 +0000 (17:53 +0000)]
Merge branch 'bilelmoussaoui/missing-since-annotations' into 'master'

since annotations cleanup

See merge request GNOME/gtk!4086

4 years agoMerge branch 'alatiera/gdk_create_context_nullable' into 'master'
Benjamin Otte [Mon, 25 Oct 2021 17:42:00 +0000 (17:42 +0000)]
Merge branch 'alatiera/gdk_create_context_nullable' into 'master'

gdkdisplay: Remove (nullable)

See merge request GNOME/gtk!4096

4 years agoUpdate Latvian translation
Rūdolfs Mazurs [Mon, 25 Oct 2021 16:59:50 +0000 (16:59 +0000)]
Update Latvian translation

(cherry picked from commit 4f5264d1b7dae98e1732d57098b9a7e4940964cd)

4 years agogdkdisplay: Remove (nullable)
Jordan Petridis [Mon, 25 Oct 2021 15:40:40 +0000 (18:40 +0300)]
gdkdisplay: Remove (nullable)

gdk_display_create_gl_context only returns NULL when there is
an error set or asserts/aborts. So nullalbe annotation isn't needed.

Similar to 53312cf696516cdeb1c284008992022a210bb233

4 years agoMerge branch 'enterprisey-master-patch-53741' into 'master'
Emmanuele Bassi [Mon, 25 Oct 2021 08:22:44 +0000 (08:22 +0000)]
Merge branch 'enterprisey-master-patch-53741' into 'master'

readme: Fix "Building GTK" docs link

See merge request GNOME/gtk!4095

4 years agoreadme: Fix "Building GTK" docs link
enterprisey [Mon, 25 Oct 2021 07:59:03 +0000 (07:59 +0000)]
readme: Fix "Building GTK" docs link

4 years agoMerge branch 'wip/exalm/polish' into 'master'
Matthias Clasen [Sun, 24 Oct 2021 19:04:48 +0000 (19:04 +0000)]
Merge branch 'wip/exalm/polish' into 'master'

A few inspector papercut fixes

See merge request GNOME/gtk!4092

4 years agoinspector: Expand the controllers column view
Alexander Mikhaylenko [Sun, 24 Oct 2021 17:23:26 +0000 (22:23 +0500)]
inspector: Expand the controllers column view

4 years agoinspector: Use .list for property list as well
Alexander Mikhaylenko [Sun, 24 Oct 2021 17:20:13 +0000 (22:20 +0500)]
inspector: Use .list for property list as well

4 years agoinspector: Clean up the .list style
Alexander Mikhaylenko [Sun, 24 Oct 2021 17:19:36 +0000 (22:19 +0500)]
inspector: Clean up the .list style

Make it work with the property list as well, handle spinbuttons, adjust
paddings so that buttons don't touch each other, don't override horizontal
padding unnecessarily.

4 years agoinspector: Stop using .sidebar for the recorder page
Alexander Mikhaylenko [Sat, 23 Oct 2021 23:01:35 +0000 (04:01 +0500)]
inspector: Stop using .sidebar for the recorder page

Those aren't sidebars. Add separators manually instead of misusing the
style class.

4 years agoinspector: Use consistent GtkTextView margins
Alexander Mikhaylenko [Sat, 23 Oct 2021 22:58:21 +0000 (03:58 +0500)]
inspector: Use consistent GtkTextView margins

4 years agoinspector: Add a separator under toolbar in css editor
Alexander Mikhaylenko [Sat, 23 Oct 2021 22:55:26 +0000 (03:55 +0500)]
inspector: Add a separator under toolbar in css editor

Same as object properties.

4 years agoinspector: Use tabular figures for list position label
Alexander Mikhaylenko [Sat, 23 Oct 2021 22:22:56 +0000 (03:22 +0500)]
inspector: Use tabular figures for list position label

Avoid buttons jumping around while moving through list models.

4 years agoinspector: Use .toolbar for toolbars
Alexander Mikhaylenko [Sat, 23 Oct 2021 22:10:54 +0000 (03:10 +0500)]
inspector: Use .toolbar for toolbars

Remove all of the manual margins, spacing and has-frame=0, be more
consistent.

4 years agoinspector: Use a GtkSeparator for the object details toolbar
Alexander Mikhaylenko [Sat, 23 Oct 2021 21:53:22 +0000 (02:53 +0500)]
inspector: Use a GtkSeparator for the object details toolbar

Remove a hardcoded light grey border from the sidebar that was used for
this.

4 years agoinspector: Remove list header style
Alexander Mikhaylenko [Sat, 23 Oct 2021 21:51:07 +0000 (02:51 +0500)]
inspector: Remove list header style

The one from the theme works just fine.

4 years agoUpdate POTFILES.skip
Piotr Drąg [Sat, 23 Oct 2021 11:08:47 +0000 (13:08 +0200)]
Update POTFILES.skip

4 years agoMerge branch 'wip/otte/for-master' into 'master'
Benjamin Otte [Sat, 23 Oct 2021 00:00:32 +0000 (00:00 +0000)]
Merge branch 'wip/otte/for-master' into 'master'

Fix a bunch of issues found by static analyzer

See merge request GNOME/gtk!4090

4 years agopng: allocate data before sigsetjmp()
Benjamin Otte [Fri, 22 Oct 2021 21:51:26 +0000 (23:51 +0200)]
png: allocate data before sigsetjmp()

Makes the static analyzer not trip up when trying to analyze memory
leaks.

4 years agodemos: Remove unused code
Benjamin Otte [Fri, 22 Oct 2021 18:54:17 +0000 (20:54 +0200)]
demos: Remove unused code

4 years agoglx: Remove unused assignment
Benjamin Otte [Fri, 22 Oct 2021 18:47:26 +0000 (20:47 +0200)]
glx: Remove unused assignment

4 years agotiff: Fix variable assignment
Benjamin Otte [Fri, 22 Oct 2021 18:45:27 +0000 (20:45 +0200)]
tiff: Fix variable assignment

4 years agoMerge branch 'wip/otte/center-center-center' into 'master'
Benjamin Otte [Fri, 22 Oct 2021 16:35:41 +0000 (16:35 +0000)]
Merge branch 'wip/otte/center-center-center' into 'master'

Add a bunch of reftests and fix their failures

Closes #4285

See merge request GNOME/gtk!4085

4 years agotestsuite: Add lots of reftests for picture sizing
Benjamin Otte [Thu, 21 Oct 2021 01:32:32 +0000 (03:32 +0200)]
testsuite: Add lots of reftests for picture sizing

Have square images in the following sizes:
  * 20
  * 100
  * 150
  * 200
  * 300
and place them in a can-shrink Picture allocated at the sizes:
  * 200x100
  * 100x200
and set align to center/center.

That's 10 combinations and they should all do the right thing.

4 years agowidget: adjust allocation even better
Benjamin Otte [Fri, 22 Oct 2021 12:51:56 +0000 (14:51 +0200)]
widget: adjust allocation even better

This fixes fallout from 3742fabae040d914e6ae58edf31170a54a980f21 where
we would no longer allocate widgets to their natural size when
align flags where used.

GtkPicture wants to be allocated at 100% in that case, so a picture with
a 100x100 image inside a 200x200 window should be allocated 100x100.

The new adjustment code now does the following (for width-for-height
instead of height-for-width, swap width and height in the following):

1. query the minimum width for the allocated height
2. query the natural width
3. compute the maximum of (1) and (2)
4. set the widget width to the minimum of (3) and the allocated
   width.
5. compute the natural height for (4)
6. set the widget height to the minimum of (5) and the allocated height.

4 years agoreftests: Don't crash if no node
Benjamin Otte [Thu, 21 Oct 2021 01:06:56 +0000 (03:06 +0200)]
reftests: Don't crash if no node

If we have no node, don't crash when trying to save the node file.

Instead, write an empty file.

4 years agogl: Call make_current() before doing any GL work
Benjamin Otte [Fri, 22 Oct 2021 15:37:34 +0000 (17:37 +0200)]
gl: Call make_current() before doing any GL work

But don't call it too early, we only want to call it once we have
prepared the target.

This way, we guarantee that a GL context is always available and that it
is bound to the correct target.

4 years agobuild: Make sure ifuncs exist when using fp16
Benjamin Otte [Fri, 22 Oct 2021 14:31:40 +0000 (16:31 +0200)]
build: Make sure ifuncs exist when using fp16

Fixes msys compiles on Windows (and everywhere else hopefully).

Fixes #4285

4 years agoMerge branch 'fix-mac-kana-eisu' into 'master'
Emmanuele Bassi [Fri, 22 Oct 2021 15:05:29 +0000 (15:05 +0000)]
Merge branch 'fix-mac-kana-eisu' into 'master'

Correct translation of Mac JIS Eisu & Kana keys

Closes #4117

See merge request GNOME/gtk!3782

4 years agog-i: add missing since 4.6 annotations
Bilal Elmoussaoui [Thu, 21 Oct 2021 13:56:15 +0000 (14:56 +0100)]
g-i: add missing since 4.6 annotations

4 years agogdk: fix MemoryFormat since annotations
Bilal Elmoussaoui [Thu, 21 Oct 2021 13:55:57 +0000 (14:55 +0100)]
gdk: fix MemoryFormat since annotations

4 years agoUpdate Croatian language
muzena [Thu, 21 Oct 2021 11:05:28 +0000 (13:05 +0200)]
Update Croatian language

4 years agoMerge branch 'wip/otte/for-master' into 'master'
Matthias Clasen [Thu, 21 Oct 2021 00:00:29 +0000 (00:00 +0000)]
Merge branch 'wip/otte/for-master' into 'master'

Better errors ftw!

See merge request GNOME/gtk!4084

4 years agoMerge branch 'subpop/docs-getting-started-hello-world' into 'master'
Matthias Clasen [Wed, 20 Oct 2021 22:55:42 +0000 (22:55 +0000)]
Merge branch 'subpop/docs-getting-started-hello-world' into 'master'

Match hello world code to description

Closes #4358

See merge request GNOME/gtk!4081

4 years agocss: Emit a special error for a common error
Benjamin Otte [Wed, 20 Oct 2021 22:05:56 +0000 (00:05 +0200)]
css: Emit a special error for a common error

This CSS:
  calc(5px+3px)
is wrong because it gets broken to:
  calc(  5px  +3px  )
which is 2 numbers inside the calc, and what you want is:
  calc(  5px  +  3px  )
but you need to add a space to get this, like so:
  calc(5px + 3px)
which is the recommended way to write calc() statements.

So whenever we encounter an error, check if the next token is a signed
number and if so, include it in the error message.

4 years agocss: Split dimension token
Benjamin Otte [Wed, 20 Oct 2021 22:05:19 +0000 (00:05 +0200)]
css: Split dimension token

Add a signed and an unsigned version.

This will become useful real soon.

4 years agoMerge branch 'wip/otte/display-gl' into 'master'
Benjamin Otte [Wed, 20 Oct 2021 22:14:58 +0000 (22:14 +0000)]
Merge branch 'wip/otte/display-gl' into 'master'

Add gdk_display_create_gl_context()

See merge request GNOME/gtk!4083

4 years agotestsuite: Create GL renderers without surfaces
Benjamin Otte [Wed, 20 Oct 2021 18:33:57 +0000 (20:33 +0200)]
testsuite: Create GL renderers without surfaces

4 years agonode-editor: Create renderers surfaceless
Benjamin Otte [Wed, 20 Oct 2021 18:30:43 +0000 (20:30 +0200)]
node-editor: Create renderers surfaceless

4 years agogsk: Allow gsk_renderer_realize (renderer, NULL, NULL)
Benjamin Otte [Wed, 20 Oct 2021 18:30:08 +0000 (20:30 +0200)]
gsk: Allow gsk_renderer_realize (renderer, NULL, NULL)

That way, we can use renderers without surfaces.

4 years agodrawcontext: Guard begin/end_frame() against non-surface contexts
Benjamin Otte [Wed, 20 Oct 2021 18:07:37 +0000 (20:07 +0200)]
drawcontext: Guard begin/end_frame() against non-surface contexts

This can happen now with gdk_display_create_gl_context().

4 years agoAPI: Add gdk_display_create_gl_context()
Benjamin Otte [Wed, 20 Oct 2021 18:03:00 +0000 (20:03 +0200)]
API: Add gdk_display_create_gl_context()

This is an alternative to gdk_surface_create_gl_context() when the
context is meant to only draw to textures.

This is useful in the testsuite or in GStreamer or with GLArea,
basically whenever we want to do GL stuff but don't need to actually
draw anything on screen.

A bunch of code will need to be updated to deal with context->surface
being NULL.

4 years agosurface: Remove (nullable)
Benjamin Otte [Wed, 20 Oct 2021 18:02:26 +0000 (20:02 +0200)]
surface: Remove (nullable)

The function only returns NULL on error, and such a function is not
considered nullable.

4 years agodocs: match hello world code to description
Link Dupont [Wed, 20 Oct 2021 02:36:12 +0000 (02:36 +0000)]
docs: match hello world code to description

Add the creation of a GtkBox to the hello-world sample code.

Fixes: #4358
4 years agoMerge branch 'appdata-build-date' into 'master'
Matthias Clasen [Tue, 19 Oct 2021 13:00:20 +0000 (13:00 +0000)]
Merge branch 'appdata-build-date' into 'master'

Drop date attribute from our appdata files

See merge request GNOME/gtk!4079